home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue30
/
bdeorx
/
BDEDORX.ZIP
/
RestDevl
/
Restruc.dpr
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1997-10-08
|
270 b
|
17 lines
program Restruc;
uses
Forms,
Restruc1 in 'RESTRUC1.PAS' {MainForm};
{$R *.RES}
begin
{$IFDEF WIN32}
Application.Initialize;
{$ENDIF}
Application.Title := 'Restructor';
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.